home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-06-04 | 1.0 KB | 69 lines | [TEXT/CWIE] |
- // COPYRIGHT 1994 A.D. Software, All rights reserved
-
- // public layer of OOFILE database - views
-
- // inline definitions
-
-
- // -------------------------------------------------------
- // d b V i e w
- // -------------------------------------------------------
-
-
- inline dbView& dbView::append(dbField& rhs)
- {
- OOF_Dictionary::append(&rhs);
- return *this;
- }
-
-
- inline dbView& dbView::append(dbField* rhs)
- {
- OOF_Dictionary::append(rhs);
- return *this;
- }
-
-
- inline dbSource* dbView::source() const
- {
- return mSource;
- }
-
-
- inline dbView& dbView::operator<<(dbField& rhs)
- {
- append(rhs);
- return *this;
- }
-
-
- inline dbView& dbView::operator<<(dbField* rhs)
- {
- append(rhs);
- return *this;
- }
-
-
-
- // -------------------------------------------------------
- // d b S o u r c e
- // -------------------------------------------------------
- inline bool dbSource::empty()
- {
- return count()==0;
- }
-
-
- inline bool dbSourceTable::more()
- {
- return mTable->more();
- }
-
-
- inline void dbSourceTable::start()
- {
- mTable->start();
- }
-
-
-